-
Notifications
You must be signed in to change notification settings - Fork 7
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Producers support staged tx #961
Conversation
This is in draft because before delivering I need to:
|
Recursion in account auth doesn't really work with checkAuthSys. Recursion only works with a multisig that allows failure of some nested calls without aborting.
Technically what we want is one auth stack per top-level call. Actually, I think the easiest way to get fully correct semantics is to pass the stack as a parameter. An auth service that delegates would need to add the current account to the stack before the nested calls. Non-delegating auth services can safely leave off the extra parameter, and the extra data will be ignored. The extra size will not be a problem, because the wasm stack will overflow first (I think the current limit is 255 recursive actions). |
No description provided.